on ‎2015 Feb 05 10:52 PM
I have a linux machine that runs 50 instances of the same 50Mb database.
cmd for each looks like this:
dbsrv16 -m -ud -c 64M -ch 256M "-x TCPIP(port=2001)" "-xs HTTP(port=2501)" -ti 0 -tl 0 -on 10m -oe /peopleweb/db*NN*/errors.txt -o /peopleweb/db*NN*/console.txt -n pw*NN* /peopleweb/db*NN*/PW16_pw.dbWith NN starting at 01 up to 50
These databases are presently all just idling. No workload. But between 2-5 hours, a random one would just stop running. Upon inspecting the /var/log folder in my Ubuntu server, I came across the following in the apport.log file:
ERROR: apport (pid 4949) Fri Feb 6 03:40:08 2015: called for pid 2985, signal 6, core limit 0 ERROR: apport (pid 4949) Fri Feb 6 03:40:08 2015: executable: /opt/sqlanywhere16/bin64/dbsrv16 (command line "dbsrv16 -m -ud -c 64M -ch 256M -x\\ TCPIP(port=2029) -xs\\ HTTP(port=2529) -ti 0 -tl 0 -on 10m -oe /peopleweb/db29/errors.txt -o /peopleweb/db29/console.txt -n pw29 /peopleweb/db29/PW16_pw.db") ERROR: apport (pid 4949) Fri Feb 6 03:40:08 2015: is_closing_session(): no DBUS_SESSION_BUS_ADDRESS in environment ERROR: apport (pid 4949) Fri Feb 6 03:40:08 2015: apport: report /var/crash/_opt_sqlanywhere16_bin64_dbsrv16.1002.crash already exists and unseen, doing nothing to avoid disk usage DoSAny idea what could cause this, or where I should start looking?
What is the maximum number of databases I can run on a single machine?
I don't want to run a single server with multiple databases as each should listen on a different port.
Request clarification before answering.
called for pid 2985, signal 6, core limit 0
This is indicating that the database server process (pid 2985) received a signal 6 (SIGABRT). SQL Anywhere will typically issue a SIGABRT during a database assertion. (See KBA 1958942 - Error: "Assertion failed: 123456" / SQLCODE -301 "Internal Database Error" - Handling an Assertion Failure)
Any idea what could cause this, or where I should start looking? ... Nothing in the two files either.
Just to confirm the scenario: so for two hours, the database server was running, checkpointing, etc. and then crashed with no message in the console log (/peopleweb/dbNN/console.txt) or error log (/peopleweb/dbNN/errors.txt)? We will likely need to take a look at the core file for the crashing process in SAP Support to understand what's happening in this situation further.
Typically when SQL Anywhere crashes, we have a signal handler that attempts to write out a core file to the current working directory of the database server (using the default core_pattern). However, since you are using -ud (or if you had used dbspawn), we are following standard UNIX daemon methodology by setting the current working directory to root "/", so no core file will be created there (likely due to permissions that the process is running under).
Under these situations to generate a core file you must either:
/proc/sys/kernel/core_pattern on Linux to cause the core files to be written into a different directory.In this case (Ubuntu), core_pattern defaults to |/usr/share/apport/apport %p %s %c, which passes the core off to apport to generate. You will likely need to enable and configure apport to store the core files correctly so we can examine them later. Typically core files from apport are stored in /var/crash/ and you may have to configure RLIMIT_CORE.
For more information about SQL Anywhere and core files, and to understand which files we will need to collect in technical support to analyze the core files for more information, see the following KBAs:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that sounds like the core file we would need to collect, generated from apport.
Could this be submitted to SAP for analysis?
Yes, for sure. But as mentioned above, we will also need to collect the system libraries from the crashing system in order to open the core file for a detailed analysis - can you open an incident with SAP Support?
Also depending on how big the core file is, you may have to upload it to us via FTP - we can provide the details on how to do this via the incident.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.