Skip to content

Commit 7db274f

Browse files
committed
extended SWC-DB introduction
1 parent 4a46333 commit 7db274f

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

docs/README.md

+9
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,18 @@ sort: 1
88
**SWC-DB© (Super Wide Column Database) - a High Performance Scalable Database**
99

1010

11+
1112
***
1213

1314

15+
1416
## Introduction to the SWC-DB
17+
The SWC-DB _(Super Wide Column Database)_ a Super Fast database designed to handle [Yottabytes+](https://en.wikipedia.org/wiki/Yottabyte) on a [quadrillion](https://en.wikipedia.org/wiki/Orders_of_magnitude_(numbers)#1024) base of entries .
18+
19+
_The proven test, on one machine(CPU Intel E3-1246V3 RAM 32GB SW-RAID 2x 2TB-7200rpm) run the DB and the Client, capabilities standing is a dozen terabytes of raw-data with 100+billion of record entries with performace input of ~250,000+ cells a second and random scan/select of one entry surrounds the microseconds to milliseconds, whereas performance varies on applied configurations and hardware. **Testing facillity is required for in deep and further testing.**_
20+
21+
22+
1523

1624

1725
#### The **_```What is SWC-DB?```_** checklist ##
@@ -42,6 +50,7 @@ sort: 1
4250
| **a Versioned Data DB** | **``````** | automatic or user defined versions by Desc/Asc with Max Versions to Keep |
4351
| **a DB supporting an “Atomic“ Counter Value** | **``````** | |
4452
| **a DB supporting Query of Multiple Sequences** | **``````** | multiple Columns with multiple Intervals in a Column |
53+
| **a Document/Files stores DB** | **``````** | user defined Meta/Header & Key(file-path) structure whereas anomaly of use is at file-size above Range-Block-size cfg |
4554
| **a Super Wide Column DB** | **``````** | supporting 16777216(2^24,uint24) number of Fractions, max 2^24 bytes a Fraction and total size of a key upto 2^32 bytes |
4655

4756

docs/configure/the_config_files/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sort: 1
55

66

77
# The SWC-DB Configuration-Files with extension .cfg (etc/swcdb/*.cfg)
8-
SWC-DB by default for the configuration files, relatively to the installation-prefix, use the folder 'etc/swcdb/'. The default path for configuration files is a run-time configurable property 'swc.cfg.path' argv for using with swcdbProgram 'args'. ```swcdbProgram --help;``` will indicate whether it is optional.
8+
SWC-DB by default for the configuration files, relatively to the installation-prefix, use the folder `etc/swcdb/`. The default path for configuration files is a run-time configurable property `swc.cfg.path` argv for using with swcdbProgram 'args', the ```swcdbProgram --help;``` will indicate whether it is optional.
99

1010

1111
## The file Format
@@ -61,7 +61,7 @@ The value of a property defaults to type String, the available specialized value
6161

6262

6363
## The file with extended extension (.dyn.cfg)
64-
Additionally to the '.cfg' configuration filename there are filenames with extended extension of dynamic type '.dyn.cfg'. These files are designated for use with value of function guarded-value/s which are allowed for reload of configurations at swcdbPrograms run-time.
64+
Additionally to the `.cfg` configuration filename there are filenames with extended extension of dynamic type `.dyn.cfg`. These files are designated for use with value of function guarded-value/s which are allowed for reload of configurations at swcdbPrograms run-time.
6565

6666

6767
## The Roles and cfg filename

docs/use/cli/db_client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sort: 1
55

66

77
# Using the SWC-DB(client) CLI - The SWC-DB DB-Client Shell
8-
The DB-Client is a client implementing the [SQL](/use/sql/) commands and syntax while it has additional Flags and commands.
8+
The DB-Client is a client implementing the [SQL]({{ site.baseurl }}/use/sql/) commands and syntax whereas it has additional Flags and commands.
99

1010

1111
##### ENTER SWC-DB(client) CLI:

src/py/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ execute_process(COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/package/swcdb ${PY_PK
2020
execute_process(COMMAND rm -rf ${PY_PKG_PATH}/MANIFEST )
2121
configure_file(package/setup.py.in ${PY_PKG_PATH}/setup.py @ONLY)
2222
configure_file(package/requirements.txt.in ${PY_PKG_PATH}/requirements.txt @ONLY)
23-
configure_file(${CMAKE_SOURCE_DIR}/docs/use/thriftclient/python/README.md ${PY_PKG_PATH}/README.md @ONLY)
23+
configure_file(package/README.md ${PY_PKG_PATH}/README.md @ONLY)
2424

2525

2626
list(GET PYTHON_EXECUTABLES 0 py)

0 commit comments

Comments
 (0)