Skip to content

Picture library metadata management solution : stores pictures (file-server), index metadata (elasticsearch), view data (kibana)

License

Notifications You must be signed in to change notification settings

barasher/picdexer

Repository files navigation

picdexer

Build Status codecov

picdexer is a picture indexing solution :

  • it extracts metadata from pictures
  • metadata are indexed on elasticsearch
  • pictures can be downsampled and stored using file-server
  • it provides a view over indexed data using kibana

picdexer orchestrates the whole process :

  • it configures elasticsearch
  • it configures kibana
  • it extracts and index pictures metadata
  • it can store pictures (possibly resized)

Screenshots

Statistics

Getting pixdexer

picdexer is released :

How to configure

In the picdexer docker image :

  • the configuration file is located in /etc/picdexer/picdexer.json
  • the "input" folder is located in /data/picdexer/in/
  • the default "dropzone" folder is /data/picdexer/dropzone/

The configuration file is a JSON file, here is a complexe example :

{
  "loggingLevel": "warn",
  "elasticsearch": {
    "url": "http://192.168.1.102:9200",
    "threadCount": 4,
    "bulkSize": 50
  },
  "binary": {
    "url": "http://192.168.1.100:8080",
    "height":480,
    "width":640,
    "threadCount": 4,
    "workingDir": "/tmp"
  },
  "kibana": {
    "url": "http://192.168.1.102:5601"
  },
  "dropzone": {
    "root": "/tmp/foo",
    "period": "5s"
  }
}
  • loggingLevel (optional) defines the logging level. Values :debug, info (default), warn, error, ...
  • elasticsearch (required if used) configures the elasticsearch connexion and the metadata extraction process
    • url (required if documents are pushed) defines the elasticsearch endpoint
    • threadCount (optional, default : 4) defines how many thread have to be used to extract medatada from pictures
    • bulkSize (optimal, default : 30) defines the size of the bulk that is sent to Elasticsearch
  • binary (required if used) configures the interactions with file-server to store pictures
    • url (required if pictures are pushed) defines the file-server endpoint
    • height and width defines the target dimension of the pictures that will be stored. If one of the dimension is 0 then pictures will not be resized (default behaviour).
    • threadcount (optional, default : 4) defines how many thread have to be used to resize pictures
    • workingDir (optional) defines the folder where resized files are temporary stored
    • usePreviewForExtensions (optional - string array) stores all the file extensions that requires a fallback to resize pictures. Some picture formats are not supported by exiftool : the "nominal" process won't work. Some of these file formats embed previews that can be resized. To use this fallback, list is this parameter all the file extensions.
  • kibana (required if user) configures the interaction with kibana (for configuration purpose)
    • url (required if kibana has to be configured) defines the kibana endpoint
  • dropzone (required if used) configures dropzone
    • root (required) defines the watched folder
    • period defines where waiting period between to watching iteration (syntax, ex : 1m, 1h, 30s, ...)

Picdexer commands

picdexer have several commands that can be used. Each command is dedicated to specific purpose.

If the return code is 0, the command is successfully execute. If any problem happens, the return code will be > 0.

Setup

picdexer can setup :

⚠️ : the maximum table cell height has to be set tu 0 in kibana. Since there is no official global setting kibana REST API, it has to be setup manually. In the kibana interface, go to Management > Advanced settings > General > Maximum table cell height and set the value to 0.

The elasticsearch and kibana part of the configuration file has to be filled.

  • Command line version : ./pcidexer setup -c [configurationFile]
    • configurationFile specifies the configuration file
  • Docker version :
docker run --rm
  -v [hostConfigurationFile]:/etc/picdexer/picdexer.json
  barasher/picdexer:1.0.0 ./setup.sh

Full process

The full process command extracts metadata, resize (eventually) and store pictures.

  • Command line version : ./picdexer full -c [configurationFile] -d [sourceFolder] -i [importId]
    • configurationFile specifies the configuration file
    • sourceFolder specifies the folder that will be browsed to find pictures that will be processed
    • importId specifies the import identifier that will be shared between all the pictures that will be processed
  • Docker version :
docker run --rm
  -v [hostSourceFolder]:/data/picdexer/in
  -v [hostConfigurationFile]:/etc/picdexer/picdexer.json
  barasher/picdexer:1.0.0 ./full.sh

Dropzone (watch a folder)

This command watches a folder, index, stores pictures and delete files.

  • Command line version : ./picdexer dropzone -c [configurationFile]
    • configurationFile specifies the configuration file
  • Docker version :
docker run --rm
  -v [hostSourceFolder]:/data/picdexer/in
  -v [hostConfigurationFile]:/etc/picdexer/picdexer.json
  barasher/picdexer:1.0.0 filewatcher

Troubleshooting

Unable to resize picture

Context: picdexer is trying to resize a picture whose file format is not directly compatible with exiftool (sample : CR2).

Symptom:

{"level":"debug","time":"2021-02-05T22:50:44 01:00","message":"Resized pictures temporary folder: /tmp/picdexer986944982"}
{"level":"info","file":"/tmp/b/cr2a.CR2","time":"2021-02-05T22:50:44 01:00","message":"Resizing..."}
{"level":"error","file":"/tmp/b/cr2a.CR2","time":"2021-02-05T22:50:44 01:00","message":"Error while resizing: error on stdout /tmp/b/cr2a.CR2: convert-im6.q16: delegate failed `'ufraw-batch' --silent --create-id=also --out-type=png --out-depth=16 '--output=%u.png' '%i'' @ error/delegate.c/InvokeDelegate/1919.\nconvert-im6.q16: unable to open image `/tmp/magick-8484Bbj7c4KBqOf4.ppm': No such file or directory @ error/blob.c/OpenBlob/2701.\nconvert-im6.q16: no images defined `/tmp/picdexer986944982/c2ba6316e0d868217d5bcda5de42774f_cr2a.CR2.jpg' @ error/convert.c/ConvertImageCommand/3258.\n"}

Solution: configure picdexer to fallback to the embedded "preview" resizing for CR2 file extension.

Configuration:

{
  "binary": {
     "usePreviewForExtensions": ["cr2"]
  }
}

Result:

{"level":"debug","time":"2021-02-05T22:53:51 01:00","message":"Resized pictures temporary folder: /tmp/picdexer608080445"}
{"level":"info","file":"/tmp/b/cr2a.CR2","time":"2021-02-05T22:53:51 01:00","message":"Resizing..."}
{"level":"info","file":"/tmp/b/cr2a.CR2","resizedFile":"/tmp/picdexer608080445/c2ba6316e0d868217d5bcda5de42774f_cr2a.CR2.jpg","file":"c2ba6316e0d868217d5bcda5de42774f_cr2a.CR2.jpg","time":"2021-02-05T22:53:52 01:00","message":"Pushing..."}

About

Picture library metadata management solution : stores pictures (file-server), index metadata (elasticsearch), view data (kibana)

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages