From 21dbeedbc9070d67863a893af39e5ffac92e0116 Mon Sep 17 00:00:00 2001 From: Pietro Battiston Date: Sun, 19 Apr 2015 12:36:25 +0200 Subject: [PATCH] DOC: Link to recipe for SafeHDF5Store --- doc/source/cookbook.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/source/cookbook.rst b/doc/source/cookbook.rst index 0e6386955a653..f69f926296020 100644 --- a/doc/source/cookbook.rst +++ b/doc/source/cookbook.rst @@ -1006,6 +1006,9 @@ The :ref:`HDFStores ` docs `Merging on-disk tables with millions of rows `__ +`Avoiding inconsistencies when writing to a store from multiple processes/threads +`__ + De-duplicating a large store by chunks, essentially a recursive reduction operation. Shows a function for taking in data from csv file and creating a store by chunks, with date parsing as well. `See here