Gld JDG 7 Run: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 31: Line 31:


   implementation:
   implementation:
     name: jboss-datagrid-7
     name: jboss-datagrid-7
     nodes:
     nodes:
Line 36: Line 37:


   load-strategy:
   load-strategy:
     name: read-then-write-on-miss
     name: read-then-write-on-miss
     reuse-value: true
     reuse-value: true


load:
load:
   threads: 1
   threads: 1
   operations: 10000
   operations: 10000


</pre>
</pre>

Revision as of 00:23, 13 January 2017

Internal

Overview

This page contains the configuration of a simple gld run that validates the installation and interoperability with JDG 7. You will need to copy an paste the content of the configuration file shown below into a test.yml in the current directory.

Procedure

cd $RUNTIME_DIR/jboss-datagrid-7.0.0-server/bin
./doman.sh

Create a test.yml in the current directory, with the content shown below.

gld -c ./test.yml

Configuration File

service:

  type: cache
  key-size: 10
  value-size: 1024

  implementation:

    name: jboss-datagrid-7
    nodes:
      - localhost:11222

  load-strategy:

    name: read-then-write-on-miss
    reuse-value: true

load:

  threads: 1
  operations: 10000