Infinispan Harness: Difference between revisions
Jump to navigation
Jump to search
01/27/15 The main Infinispan testing framework is Gld. Analyze "Infinispan Experimentation Harness" and figure out whether I can merge</font
(Created page with "=Internal= * Infinispan Tools") |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Infinispan Tools#Tools|Infinispan Tools]] | * [[Infinispan Tools#Tools|Infinispan Tools]] | ||
<center><font color=red>''01/27/15 The main Infinispan testing framework is [[Gld]]. Analyze "Infinispan Experimentation Harness" and figure out whether I can merge''</font</center> | |||
=Overview= | |||
A command-line tool that allows experimentation with an Infinispan distributed cache. We can create an Infinispan cluster from a simple command-line interface. It can be used to experiment with different Infinispan features or try various configurations. It was started with Infinispan 5.1.2 and now it works with Infinispan 5.1.4 (the version that ships with EAP 6). | |||
The harness actually starts and manages the nodes, and does not offer client access to it. | |||
=GitHub= | |||
<blockquote style="background-color: AliceBlue; border: solid thin LightSteelBlue;"> | |||
:https://github.com/NovaOrdis/playground/tree/master/wildfly/infinispan/infinispan-harness<br> | |||
</blockquote> | |||
=Build= | |||
<pre> | |||
ant clean jar | |||
</pre> | |||
=Run= | |||
The existing run scripts allow starting up to three cluster nodes: | |||
<pre> | |||
cd bin | |||
./nodeA.sh | |||
./nodeB.sh | |||
./nodeC.sh | |||
</pre> | |||
You can get interactive help - list of available commands and syntax: | |||
<pre> | |||
help | |||
</pre> |
Revision as of 23:33, 29 May 2016
Internal
Overview
A command-line tool that allows experimentation with an Infinispan distributed cache. We can create an Infinispan cluster from a simple command-line interface. It can be used to experiment with different Infinispan features or try various configurations. It was started with Infinispan 5.1.2 and now it works with Infinispan 5.1.4 (the version that ships with EAP 6).
The harness actually starts and manages the nodes, and does not offer client access to it.
GitHub
Build
ant clean jar
Run
The existing run scripts allow starting up to three cluster nodes:
cd bin ./nodeA.sh ./nodeB.sh ./nodeC.sh
You can get interactive help - list of available commands and syntax:
help