29 coaches online • Server time: 01:50
* * * Did you know? The most touchdowns in a single match is 23.
Log in
Recent Forum Topics goto Post Chaos Draft League R...goto Post anyone know how to c...goto Post Elf Draft Coach
SzieberthAdam
Last seen 13 weeks ago
SzieberthAdam (25941)
Overall
Rookie
Overall
Record
0/0/0
Win Percentage
n/a
Archive

2021

2021-01-03 16:27:04
rating 5.9

2020

2020-10-14 20:25:15
rating 5.7
2020-09-23 19:18:53
rating 5.9
2020-08-20 20:09:38
rating 5.6
2020-03-27 18:56:20
rating 5.7
2020-02-01 22:49:47
rating 5.8
2020-01-19 16:58:08
rating 6

2019

2019-11-02 17:57:43
rating 5.8
2019-10-30 15:47:55
rating 5.3
2019-06-21 14:04:18
rating 5.4
2019-03-22 21:40:48
rating 6
2019-01-29 15:12:29
rating 6

2018

2018-08-21 21:43:01
rating 6
2018-05-23 20:47:44
rating 5.3
2018-03-10 21:42:18
rating 5
2018-02-28 20:09:49
rating 6
2018-02-23 23:24:45
rating 5.2
2018-02-05 17:13:07
rating 6
2018-01-30 20:22:27
rating 5.4
2018-01-21 15:14:20
rating 5.4
2018-01-03 18:37:49
rating 5.5

2017

2017-03-28 20:58:26
rating 6
2017-03-05 14:13:37
rating 6
2017-03-01 13:21:58
rating 6
2017-02-22 18:16:02
rating 5.8
2017-01-03 01:29:37
rating 6

2016

2016-02-25 22:11:34
rating 5.4

2015

2015-01-07 22:57:07
rating 5.9
2015-01-03 18:35:23
rating 6

2014

2014-11-17 20:31:10
rating 6
2014-11-16 21:15:06
rating 6
2014-09-23 18:32:17
rating 5.7
2014-09-02 21:23:29
rating 6
2014-01-23 08:34:14
rating 6

2013

2013-12-19 19:07:11
rating 4.2
2013-11-10 02:18:27
rating 5.4
2013-10-19 13:49:18
rating 5.1
2013-10-01 19:35:14
rating 5
2013-09-24 12:03:28
rating 5.9
2013-08-06 23:48:54
rating 6
2015-01-07 22:57:07
9 votes, rating 5.9
fumbblplus devnote #2
WARNING! Huge techical text!

In my last blog entry I promised to start a nice metagroup for the community. I want to share the details why I decided to delay the start.

In the current state of the code the program saves all of its stuff to the local disk (well, in case of a Raspberry Pi, the SD card) which seemed fine for a while.

I toyed with the thought of using an SQL server to store the data of the group. I started making a sketch of the database and I stopped working on it at this state:



For the second thougt, it seems a pretty poor design. However, it made me to stay at the local storage way ... well, at least for the last few days. The group works nicely with files according to the simulations I made. At the time of the blog post I planned to write the note style and the code which deals with disconnections and push the start button. As I started to put the pieces together I was thinking about the file handling of the program and I thought I can make it a little better before the kick off.

Currently, all stuff is saved in separate files. This leads to more than thousand files in a season directory. One file goes for each of the following stuff:
  • Pairings (content example: ["Undead","Dwarf"])
  • Done (content: one byte boolean)
  • Attendances (content: two four byte integers for the two races which counts the numbers of how many times a race played since the start of the round until the contribution)
  • Report (content: the JSON container of the match report)
Since for normal races there are 23 rounds with 12 pairings each this leads to 1104 files. In addition, one file per round saved the attendances of races during the round and another stored the start date and match ID of the round. This increases the number of files with 46. Moreover, another 11 files stored the data of head-to-head results of both coaches and races, races a coach played, scores of coaches, WDL of races etc.

A developer should know that a file opening and closing has its cost in time. Working with several thousands could not said to be effective on a small hardware even if it uses a memory card instead of a hard drive for the task.

What I want instead is to keep the data in several files per season only whose has some higher complexity without loosing the flexibility. In flexibility I mean that replacing a tiny part of the structure should not require the whole file to be rewritten. How is that possible? Let's say I want ot store the number of appearances of each races. I clearly need 24 integers for that. Integers can be stored many ways, since higher possible values require longer data. For this task, four byte integers will be fine enough which makes my file 96 bytes in size. The nice part of this structure is that I can replace a singe value by navigating to its four bytes long space and rewrite that four bytes (or maybe less) only which is a very tiny I/O operation.

I, however, want to allow more complex nested structures into my files without loosing the ability to manage them in a nice and fast way. I started working on it from scratch. The current state of the repository is here if one may interested. I put different data of various types together in a row structure including array of array of integers (whitch is a matrix) and was satisfied. This would be great to develop and use(!) ... and I will continue its development shortly after I released the metagroup.

I figured out that because the Pi would run 24/7 I should get back to the SQL way (PostgreSQL in specific) or buy a UPS to protect the system from power supply losses. PostgreSQL has a nice transaction mechanism which garantees I won't end up messing up my entire database if the power loss hits in the middle of a running transaction.

I have long-term plans with the file container project though. Some of you may remember cheating saves of various games with hex editors. One should replace a specific part of the file with FF hex values which resulted the maximum credit or whatever the game could provide. The writer of the description reverse enginered the save file format of the game by saving the game and searching for a value he knew. As I said, integers have many faces so it is not an easy task. Probably he had to do many saves at different value states and searching for the appropriate value in each to catch the location.

I want to develop an open-source package which is not only a binary data file builder and manager, but also a reverse engineering library. The description of a file format could be used for I/O and file management. It will be human readable which could be published making the structure of a binary data file understandable and open knowledge. So my time is not wasted at all.

You guys, however, may still waiting for the metagroup to start. Well, despite my former promise, I should rethink the database structure and migrate the data of the RRRC to that place. I really believe now that it will spare me a lot of headache and maintenance work later on. I want this stuff to run with as little maintenance requirement as possible.

Sorry for the delay!

Be patient, and play some Fantasy Football until the RRRC kick off!

UPDATE! The development repository is here:

https://github.com/SzieberthAdam/fumbbl_dynamicnotes

I splitted the database to separate schemas (layers). The public layer deals with the data on FUMMBL. Think it as a mirror. The RRRC layer is for the metagroup. It gets informed of incoming matches of the public layer and updates the results and standings based on that.

You can watch the structure of the database schemas by opening the DIA files in Dia Diagram Editor.
Rate this entry
Comments
Posted by Rabe on 2015-01-08 00:03:03
No worries, do what you think is best! Still looking forward to the start of the meta challenge. :-)
Posted by Lorebass on 2015-01-09 03:51:22
does it have to be a dynamic application? btw, feel free to say hi. I work with stuff wayyy larger than this at my job (\o/) and in about 4 months my life of technical documentation and analysis starts... so it'l be good to have some practice.
Posted by koadah on 2015-01-09 13:16:05
I'd go with the database if it were me. I don't know anything about the Pi though.

My Sprints currently have 145 seasons.