This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ExodusWriter { | |
private JdbcTemplate jdbcTemplate; | |
private TransactionTemplate transactionTemplate; | |
public ExodusWriter(DataSource dataSource) { | |
DataSourceTransactionManager transactionManager = new DataSourceTransactionManager(dataSource); | |
jdbcTemplate = new JdbcTemplate(transactionManager.getDataSource()); | |
transactionTemplate = new TransactionTemplate(transactionManager); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Disclaimer: | |
* This file is an example on how to use the Cassandra SSTableSimpleUnsortedWriter class to create | |
* sstables from a csv input file. | |
* While this has been tested to work, this program is provided "as is" with no guarantee. Moreover, | |
* it's primary aim is toward simplicity rather than completness. In partical, don't use this as an | |
* example to parse csv files at home. | |
*/ | |
import java.nio.ByteBuffer; | |
import java.io.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[string] $IstioVersion = "0.3.0" | |
) | |
$url = "https://github.com/istio/istio/releases/download/$($IstioVersion)/istio_$($IstioVersion)_win.zip" | |
$Path = Get-Location | |
$output = [IO.Path]::Combine($Path, "istio_$($IstioVersion)_win.zip”) | |
Write-Host "Downloading Istio from $url to path " $Path -ForegroundColor Green | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
GCC_VERSION="5.2.0" | |
WORKDIR="$HOME/src/" | |
INSTALLDIR="/platform" | |
## NOTE: XCode must be installed (through App Store) and the following run to install command-line tools. | |
## THIS IS IMPORTANT! Among other things, it creates '/usr/include' and installs the system header files. | |
# xcode-select --install |
A useful set of Lucene fundamentals that are good for grok'ing Elasticsearch.
- document: a record; the unit of search; the thing returned as search results
- field: a typed slot in a document for storing and indexing values
- index: a collection of documents, typically with the same field mappings or schema
- corpus: the entire set of documents in an index