mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
48e56f47a6
Improved Default SCI config params Added missing SCI libraries in ndb_mgm and atrt Added max of 1024 signals per receive on transporter (to improve real-time bahaviour and to ensure no job buffer explosion, still some more work left on avoiding job buffer explosion in the general case) ndb/src/common/transporter/Packer.cpp: Fix for job buffer explosion and real-time behaviour also in high load scenarios. ndb/src/common/transporter/SCI_Transporter.cpp: Restored old Shared memory buffer implementation. Changed condition slightly on when to send SCI buffer. ndb/src/common/transporter/SCI_Transporter.hpp: Changed back to old shared memory implementation ndb/src/common/transporter/SHM_Buffer.hpp: Changed back to old shared memory implementation ndb/src/common/transporter/SHM_Transporter.cpp: Changed back to old shared memory implementation ndb/src/common/transporter/SHM_Transporter.hpp: Changed back to old shared memory implementation ndb/src/common/transporter/TransporterRegistry.cpp: Changed back to old shared memory implementation ndb/src/kernel/vm/FastScheduler.hpp: Spelling error ndb/src/mgmclient/Makefile.am: Missing SCI library ndb/src/mgmsrv/ConfigInfo.cpp: Changed to more proper config parameters ndb/test/run-test/Makefile.am: Added missing SCI library
25 lines
890 B
Makefile
25 lines
890 B
Makefile
|
|
testdir=$(prefix)/mysql-test/ndb
|
|
|
|
include $(top_srcdir)/ndb/config/common.mk.am
|
|
include $(top_srcdir)/ndb/config/type_util.mk.am
|
|
include $(top_srcdir)/ndb/config/type_mgmapiclient.mk.am
|
|
|
|
test_PROGRAMS = atrt
|
|
test_DATA=daily-basic-tests.txt daily-devel-tests.txt
|
|
test_SCRIPTS=atrt-analyze-result.sh atrt-gather-result.sh atrt-setup.sh \
|
|
atrt-clear-result.sh make-config.sh make-index.sh make-html-reports.sh
|
|
|
|
atrt_SOURCES = main.cpp
|
|
INCLUDES_LOC = -I$(top_srcdir)/ndb/src/mgmclient
|
|
LDADD_LOC = $(top_builddir)/ndb/src/mgmclient/CpcClient.o \
|
|
$(top_builddir)/ndb/src/libndbclient.la \
|
|
$(top_builddir)/dbug/libdbug.a \
|
|
$(top_builddir)/mysys/libmysys.a \
|
|
$(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@
|
|
|
|
wrappersdir=$(prefix)/bin
|
|
wrappers_SCRIPTS=atrt-testBackup atrt-mysql-test-run
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|