aboutsummaryrefslogtreecommitdiffstats
path: root/docker/thirdparty-requirements.txt
blob: cc8f5f9c874e6c436b3128369fe0ff595782047c (plain)
1
2
3
4
5
6
7
8
9
10
baro_tests
sdnvpn
securityscanning
sfc
promise
doctor-test
tosca-parser>=0.7.0 # Apache-2.0
heat-translator>=0.4.0 # Apache-2.0
refstack-client
domino
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
###################### PostgreSQL DataSource configuration example
#


#####
#  DataSource configuration
#
datasource.name         mysql

datasource.url          jdbc:mysql://REPLACE_MYSQL1_HOST:3306/rubbos
datasource.classname    com.mysql.jdbc.Driver

datasource.username     rubbos
datasource.password     rubbos


#####
#  ConnectionManager configuration
#

#  JDBC connection checking level.
#     0 = no special checking
#     1 = check physical connection is still open before reusing it
#     2 = try every connection before reusing it
jdbc.connchecklevel     1

#  Max age for jdbc connections
#     nb of minutes a connection can be kept in the pool
jdbc.connmaxage         30

#  Max concurrent threads on same tx/connection
#  (not used with a customized jdbc datasource)
jdbc.connmaxthreads     4

#  Max wait time if more than connmaxthreads threads request conn
#     value is in seconds
#  (not used with a customized jdbc datasource)
jdbc.connexcltimeout    30

#  Test statement
jdbc.connteststmt       select 1


######
#  Customizing JDBC DataSource configuration
#

#  Name of the class implementing the XADataSource
#datasource.factory     org.objectweb.jonas.dbm.JonasStandardXADataSource

#  JNDI name use to bind the XADataSource
#datasource.xadataname  postgre1_xa

#  Minimum number of physical connection used by  the XADataSource
#datasource.mincon      5

#  Maximum number of physical connection used by the XADataSource
#datasource.maxcon      10

#  Minimum number of XAConnection used by the pool
#jdbc.minconpool        10

#  Maximum number of XAConnection used by the pool
#jdbc.maxconpool        20

#  Time between two clean-up of old unused connection
#  (value is in millisecond)
#jdbc.sleeptimepool     300000

#  Force the gc to be launched when cleaning up
#jdbc.gcpool            false

#  In case of no connection in the pool,
#  deadlockpool is the global time to re-try before throwing an exception
#  (value is in millisecond)
#jdbc.deadlockpool      300000

#  In case of no connection in the pool,
#  loopwaitpool is the unit time to re-try
#  (value is in millisecond)
#jdbc.loopwaitpool      10000