Skip to content

Tags: cboudereau/docker-sybase

Tags

v0.2.2

Toggle v0.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
doc: add readme license note (#21)

Add a note on license:

> The docker image is only valid for a short period

v0.2.1

Toggle v0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feature : add chaos testing example (#20)

- [x] add chaos testing example using toxiproxy 
- [x] create prometheus dashboard 
- [x] create README to explain the setup

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
deps: replace centos by rockylinux (#19)

closes #17 

- [x] use rockylinux instead of centos since RHEL EOL issues and a true
RHEL drop-in solution.
- [x] add missing libnsl dependency for sybase

v0.1.15

Toggle v0.1.15's commit message
update basic example

v0.1.14

Toggle v0.1.14's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: disable non sa logins during recovery (#16)

Sybase server port is opened while it is not completely setup (with
multiple devices setup).

Client using the image should not use SA account but instead use a non
SA account so that the login will work when sybase becomes ready.

- [x] set "enable logins during recovery" cf to 0
- [x] fix log by replacing "sybase started" to "docker-sybase started"
- [x] add basic docker-compose example
- [x] clean README

v0.1.13

Toggle v0.1.13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore/update publish github action (#15)

- [x] update publish github action
- [x] fix dockerhub semver tag publish

v0.1.12

Toggle v0.1.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add licence section in readme (#14)

v0.1.11

Toggle v0.1.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
conf: optimize default conf (#13)

According to internal tests, the configuration should be changed as
bellow:

srvbuild.master_device_size: 150
srvbuild.master_database_size: 100
srvbuild.tempdb_device_size: 250
srvbuild.tempdb_database_size: 250

max memory = 500000
procedure cache size = 100000

v0.1.10

Toggle v0.1.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add healthcheck initialized check (#12)

Add a new check in the healthcheck to be sure that the sybase server is
ready

v0.1.9

Toggle v0.1.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat/metrics example (#11) + fix new sybase package structure issue

Add an example to support metrics/timers in stored procedure / sql in
sybase

- use sp_sendmsg to send udp pakets
- create a script sample to find the best trafeoffs and alternative to a
common stopwatch
- integrate metrics in prometheus with statsd-exporter adapter

# Stopwatch tradeoff
Measuring delay with 2 dates is not recommended but to measure high
latencies (> 1s since the precision is up to 1/300 second according to
sybase documentation) without true stopwatch/timestamp, it is ok.