Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences

Edit this page


Referenced by
Articles
Articles_cn
Articles_de
Articles_pt
Articles_zh




JSPWiki v2.2.33

[RSS]


Hide Menu

TestData


How to generate random test data for your database.

dbMonster is a tool which helps database application developers with tuning the structure of the database, tuning the usage of indexes, and testing the application performance under heavy database load. dbMonster generates as much random test data as you wish and puts it into SQL database. I used dbMonster to add several thousand users to appfuse to test how it will impact performance, especially displaytag peformance.

What I really love about this system is that it allows me to fill my system with data to see how it would perform with 10,000 to 1 million users.

First you want to download dbmonster (dbmonster-core and dbmonster-ant)

I found it easiest to run dbMonster with ant on my system. I'm using Windows XP and cygwin. dbmonster-core was extracted to f:\tools\dbmonster-core-1.0.3 and dbmonster-ant-1.0.1.jar was saved to f:\tools\monster\

Create 2 new directories inside of dbmonster-core-1.0.3 called config and schema.

mkdir config
mkdir schema

Create a file called dbmonster.properties inside of the config directory you just made.

dbmonster.jdbc.driver=org.postgresql.Driver
dbmonster.jdbc.url=jdbc:postgresql://127.0.0.1/YourDatabase
dbmonster.jdbc.username=postgres
dbmonster.jdbc.password=YourPassword

dbmonster.max-tries=1000

dbmonster.rows=1000

dbmonster.progress.monitor=pl.kernelpanic.dbmonster.ProgressMonitorAdapter

Next you want to map the schema of the tables that you want to generate data for. To do this, you will make a new file called appfuse-schema.xml. This example will allow you to generate 1500 new users at a time. If you want more you can run the application more than one or change rows="1500" in the file below.

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE dbmonster-schema PUBLIC
    "-//kernelpanic.pl//DBMonster Database Schema DTD 1.1//EN"
    "http://dbmonster.kernelpanic.pl/dtd/dbmonster-schema-1.1.dtd">

<dbmonster-schema>
        <name>User Schema</name>
                <table name="app_user" rows="1500">
                        <!--
                        <key databaseDefault="false">
                                <generator type="pl.kernelpanic.dbmonster.generator.MaxKeyGenerator"
                                        <property name="columnName" value="id"/>
                                </generator>
                        </key>
                        -->
                        <column name="username">
                                <generator type="pl.kernelpanic.dbmonster.generator.StringGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minLength" value="4"/>
                                        <property name="maxLength" value="15"/>
                                        <property name="allowSpaces" value="false"/>
                                </generator>
                        </column>
                        <column name="version">
                                <generator type="pl.kernelpanic.dbmonster.generator.NumberGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minValue" value="1"/>
                                        <property name="maxValue" value="5"/>
                                        <property name="returnedType" value="integer"/>
                                </generator>
                        </column>
                        <column name="password">
                                <generator type="pl.kernelpanic.dbmonster.generator.StringGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minLength" value="4"/>
                                        <property name="maxLength" value="15"/>
                                        <property name="allowSpaces" value="false"/>
                                </generator>
                        </column>
                        <column name="first_name">
                                <generator type="pl.kernelpanic.dbmonster.generator.StringGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minLength" value="4"/>
                                        <property name="maxLength" value="15"/>
                                        <property name="allowSpaces" value="false"/>
                                </generator>
                        </column>
                        <column name="last_name">
                                <generator type="pl.kernelpanic.dbmonster.generator.StringGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minLength" value="4"/>
                                        <property name="maxLength" value="15"/>
                                        <property name="allowSpaces" value="false"/>
                                </generator>
                        </column>
                        <column name="city">
                                <generator type="pl.kernelpanic.dbmonster.generator.StringGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minLength" value="4"/>
                                        <property name="maxLength" value="15"/>
                                        <property name="allowSpaces" value="false"/>
                                </generator>
                        </column>
                        <column name="postal_code">
                                <generator type="pl.kernelpanic.dbmonster.generator.NumberGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minValue" value="10000"/>
                                        <property name="maxValue" value="77007"/>
                                        <property name="returnedType" value="integer"/>
                                </generator>
                        </column>
                        <column name="email">
                                <generator type="pl.kernelpanic.dbmonster.generator.StringGenerator">
                                        <property name="nulls" value="0"/>
                                        <property name="minLength" value="4"/>
                                        <property name="maxLength" value="15"/>
                                        <property name="allowSpaces" value="false"/>
                                </generator>
                        </column>


                </table>
</dbmonster-schema>

Configure Ant

You should put your build.properties and build.xml in the same directory that dbmonster-ant-1.0.1.jar is at.

Here are the contents of build.properties.

dbmonster.home=/tools/dbmonster-core-1.0.3
dbmonster.ant=/tools/monster
dbmonster.config=/tools/dbmonster-core-1.0.3/config
dbmonster.schemas=/tools/dbmonster-core-1.0.3/schema

Here is the build.xml file.

<project name="dbmonster task example" default="gendb" basedir=".">

  <property file="build.properties"/>

  <!-- setup classpath -->
  <path id="dbmonster.classpath">
    <fileset dir="${dbmonster.ant}">
      <include name="*.jar"/>
    </fileset>
    <fileset dir="${dbmonster.home}">
      <include name="**/*.jar"/>
    </fileset>
  </path>

  <taskdef
    name="dbmonster"
    classname="pl.kernelpanic.dbmonster.ant.DBMonsterTask"
    classpathref="dbmonster.classpath">
  </taskdef>

  <target name="gendb">
    <dbmonster
      config="${dbmonster.config}/dbmonster.properties" verbose="true">
      <fileset dir="${dbmonster.schemas}">
        <include name="*.xml"/>
      </fileset>
    </dbmonster>
  </target>
</project>


Run Ant

After you have done the above, make sure your database is started and try running ant. If all goes well you should see the following. Try starting appfuse and looking at all the new data.

That was easy!:

BUILD SUCCESSFUL
Total time: 12 seconds




Go to top   Edit this page   More info...   Attach file...
This page last changed on 06-Nov-2006 13:52:58 MST by DanQuellhorst.