Sha256: c723b8a5553f476e3d741ddcd19ebdb5ebba463d107219c04306702a0872d3b6
Contents?: true
Size: 995 Bytes
Versions: 1
Compression:
Stored size: 995 Bytes
Contents
# Drill Sergeant Ruby client for Apache Drill ## Installation First, [download Apache Drill](https://drill.apache.org/docs/installing-drill-on-linux-and-mac-os-x/). Start it with: ```sh bin/drill-embedded ``` Then add this line to your application’s Gemfile: ```ruby gem 'drill-sergeant' ``` ## How to Use Create a client ```ruby drill = Drill.new(url: "http://localhost:8047") ``` And query away ```ruby drill.query("SELECT * FROM dfs.`/path/to/some/file.csvh`") ``` ## Reference Set timeouts ```ruby Drill.new(open_timeout: 5, read_timeout: 120) ``` ## History View the [changelog](https://github.com/ankane/drill-sergeant/blob/master/CHANGELOG.md) ## Contributing Everyone is encouraged to help improve this project. Here are a few ways you can help: - [Report bugs](https://github.com/ankane/drill-sergeant/issues) - Fix bugs and [submit pull requests](https://github.com/ankane/drill-sergeant/pulls) - Write, clarify, or fix documentation - Suggest or add new features
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
drill-sergeant-0.1.2 | README.md |