Speaking as a Basho engineer, not Basho engineering, I'd much rather see
the ability to run M/R 'workers' in whatever language you want and just
have Riak M/R submit map and reduce jobs to them.
I don't know if/when that will ever happen, though.
Andrew
__
On Wed, Mar 19, 2014 at 04:15:44PM +0800, Andrey Anpilogov wrote:
> Hi,
>
> I've been playing with Riak 2.0 and found some strange performance drop
> with new Search system.
> Run two Riak nodes on E3 machines with 32GB RAM and SSD drives.
Here's your first problem. The default riak config is not
On Wed, Oct 23, 2013 at 04:57:12PM -0400, David Greenstein wrote:
>
> One other thing that might be worth mentioning here is the writes I’m
> mentioning are actually updates to existing objects. The object exists, an
> attempt to write an update for the object appears to be received by a node,
On Wed, Oct 23, 2013 at 02:36:11PM -0400, David Greenstein wrote:
>
> Hello All,
>
> I have a Riak cluster with 5 nodes on AWS m1.large instances, all using EBS
> deadline scheduling. The cluster is accessed via node.js and the riak-js
> library using the HTTP protocol. I’ve tried it with and w
On Fri, Oct 11, 2013 at 07:32:28PM +0530, raghwani sohil wrote:
> Hi ,
>
> I have three node riak(0.14.2) cluster on production(all nodes running on
> RHEL OS).
>
> I have one CentOS system on which one riak node(0.14.2) is setup using RHEL
> binary.
>
> When I m trying add CentOS riak node to e
Tombstones are still riak objects. Do the 404 responses you get back
have an X-Riak-Vclock header?
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
On Mon, Aug 19, 2013 at 04:03:25PM -0300, João Machado wrote:
> Hi all,
>
> Anyone knows how the algorithm responsible for choosing where the data
> replica is stored works?
>
> Is possible to customise (or configure) it to ensure that the data will be
> in different physical nodes (or even physi
As an effort to get some community feedback (and maybe even some
contributions) and to give people a heads up, I'd like to present my RFC
on adding security to Riak as part of the next major release:
https://github.com/basho/riak/issues/355
Feel free to provide any input, preferably via github, b
On Wed, Jul 24, 2013 at 05:16:03PM +0100, John Le Drew wrote:
> Sorry, that was just a mistake. I will correct it, my vm.args and
> app.config were generated from a shell script and that was replaces
> out, when I made my gist I copied the contents of the templates rather
> than a generated file by
Ok, so why, in your gist, is the HTTP IP set to [[IP]], at first I
thought you were anonymizing IPs, but I just noticed that you set the PB
IP correctly?
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listin
So what does ifconfig -a (or whatever the heck the modern linux
equivalent is) report for the local interfaces? Is the IP you're trying
to assign present?
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listi
Are you trying to apply an external IP to riak, which may actually be
NATted in from outside? This is very common on AWS:
http://lists.basho.com/pipermail/riak-users_lists.basho.com/2013-June/012318.html
Andrew
___
riak-users mailing list
riak-users@li
You should be doing a GET before the PUT with the deletedvclock option.
Here is an example I used to originally test (and fix) this bug:
https://gist.github.com/Vagabond/965376#file-delete_bug-erl-L48
Sadly, because of backwards compatability issues, it was not possible to
default deletedvclock
On Fri, Jul 19, 2013 at 09:53:02AM -0700, kzhang wrote:
> Thanks!
>
> install went through.
> # sudo rpm -Uvh riak-1.4.0-1.el6.x86_64.rpm
> Preparing...###
>
> [100%]
>1:riak warning: /etc/riak/a
On Wed, Jul 17, 2013 at 11:23:03AM -0400, Patrick Durusau wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Greetings!
>
> I am at the start of configuring a multi-node development environment
> with Riak 1.4 on Ubuntu 12.04. Riak was installed using apt-get.
>
> I stopped the one nod
See this old post:
http://lists.basho.com/pipermail/riak-users_lists.basho.com/2011-June/004601.html
Effectively, you should be doing a GET before ANY PUT, and using the
deletedvclock option if you're using PB or checking for the
X-Riak-VClock header on the 404 response. If you get back a tombsto
On Wed, Jul 10, 2013 at 08:19:23AM -0700, Howard Chu wrote:
> If you only need a pure key/value store, you should consider
> memcacheDB using LMDB as its backing store. It's far faster than
> memcacheDB using BerkeleyDB.
> http://symas.com/mdb/memcache/
>
> I doubt LevelDB accessed through a
By default AWS machines use NAT, they provide a temporary external IP
that is NATed through to the internal IP applied to the AWS instance.
You can also permanantly assign an 'elastic IP address' if you want a
particular instance to always be reachable on a specific IP.
http://docs.aws.amazon.com/
Ubuntu does some braindead splitting up of the erlang standard library
(so the standard library is no longer guranteed to be 'standard').
You'll probably need to install erlang-syntax-tools or something.
Andrew
___
riak-users mailing list
riak-users@lis
So, I announced lager 2.0.0rc1 during my Erlang factory talk
( http://www.youtube.com/watch?v=8BNpOHFvg_Q ), but forgot to announce
it to the relevant mailing lists. So I'm announcing RC2 here.
What is lager?
Lager (as in the beer) is a logging framework for Erlang. Its purpose is
to provide a mo
Riak does not log crashed pre/post commit hooks by default, this is to
avoid a bad hook or object from denial of servicing the cluster in
production.
If you want to debug this, you can use a lager trace at the riak
console like this:
lager:trace_file("/tmp/put_fsm.log", [{module, riak_kv_put_fsm}
On Fri, Feb 22, 2013 at 11:56:31AM -0700, Jared Morrow wrote:
>- stop each node and restart them one at a time
You can actually just drop a file in basho-patches and do a l(module) at
the riak shell (via riak attach). You can then do the code:which trick
to check it worked. You should be aware
On Thu, Jan 10, 2013 at 01:11:18PM -0500, John Kemp wrote:
> Hi,
>
> I don't usually have issues with lager, but in logging for my application, I
> feel like I've done all the right things:
>
> i) Put lager_transform in my rebar config:
>
> {erl_opts, [debug_info, warnings_as_errors, {parse_tra
To amplify Jared's reply a little...
The packaging choices we have made are with good reason. I'll try to
counter the most important points in your email below:
- Erlang VM upgrade. Erlang VM, used by Riak installed, can be upgraded
only with Riak code;
This is actually what we want. Each Ria
Look under 'lager' in app.config for the logfile paths.
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
My bad, you're setting n_val to 1, missed that the first time.
Also bear in mind, however, that riak has more work to do around a PUT
because it has to read the old vector clock for a key (if any) and
increment it, while the eldb basho_bench driver just does a PUT with no
reads/vclock magic.
Andr
Are you taking into account that the default N value for riak is 3, so
every put you do is done 3 times in riak, but only once in standalone
leveldb?
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/
I just tagged lager 1.2.1, the last 'stable' release for a while. I know
I never actually *announced* 1.2.0 (or maybe even 1.0.0 for that matter)
but this one is more important as it is probably the tag you want to
track in your applications for a while.
After tagging 1.2.1 I merged a branch to ma
On Tue, Aug 21, 2012 at 05:00:31PM +0100, Daniel Iwan wrote:
> Thanks Ryan!
>
> I'll give it a try. Where I can find details about it, parameters options
> etc.?
Just type riak-admin cluster and it will print the help message.
Andrew
___
riak-users m
On Fri, Aug 17, 2012 at 07:25:57PM +0530, raghwani sohil wrote:
> Hi ,
>
> I have riak 0.14.2 install on my server . I have five node riak cluster
> and i want to upgrade it to riak 1.2 . So i want information about what all
> things i need to take care of while upgrading it to riak 1.2 .
>
We
On Thu, May 24, 2012 at 08:28:26PM +1000, hankin wrote:
> I installed riak v1.1.2 via the 64bit deb package a few days ago.
>
> I have done almost nothing with it, there is only one server. But beam.smp
> has already used up 15 mins of CPU according to 'top'.
> When I watch 'top', beam.smp seems
On Wed, May 09, 2012 at 04:35:06PM +, Elias Levy wrote:
> That's problematic. We will be rolling out an EDS implementation in the
> near future. One cluster will be in metal, but we are likely to place the
> other on EC2, and we'd use elastic IPs and split horizon DNS.
>
> When is this expec
On Thu, May 10, 2012 at 11:09:36AM -0700, Ahmed Bashir wrote:
> Hey Andrew,
>
> Can you elaborate on how EDS replication does this mirroring? Does
> each vnode have the ability to connect to the other cluster, or is
> there a coordinator that sends data to the other cluster, etc?
There is a coor
On Tue, May 08, 2012 at 10:59:19AM -0400, Mark Rose wrote:
>
> Approximately how fast is "eventually"? Is it based on the network
> bandwidth/latency between the clusters or is there additional latency?
> Basically, would I expect more or less than a second if the two clusters
> were 250 ms away?
On Tue, May 01, 2012 at 03:49:02PM -0400, Mark Rose wrote:
> I've got some questions about Riak Enterprise I haven't been able to find
> the answers to.
Hi Mark, I'm the riak EDS 'maintainer'. Sorry I didn't reply earlier, I
was travelling all week.
> I understand that the open source version of
Actually, by default, the console doesn't show the 'verbose'
information. You should be able to see the extra information by looking
at the logfile, or you can enable it by changing the console config to
look like:
{lager_console_backend, [info, true]}
Hope that helps,
Andrew
__
On Tue, Mar 27, 2012 at 09:55:17PM -0400, Alexander Sicular wrote:
> Awesome. Grats on the release and all the hard work that went into it.
>
> 1. I heard differing things when I asked in other forums but I wanted to get
> an answer here, does Riak CS support range requests? Aka give me bytes
>
On Sat, Mar 10, 2012 at 03:43:19AM -0800, heffergm wrote:
> Can someone tell me what the default worker_limit is? I haven't been able to
> track it down... thanks!
>
> --- 1.1.1 release notes:
>
> Clients can either decide to retry (preferably with a backoff/retries limit
> mechanism) or if the h
I'm working on patching level and eleveldb, since we now run a fork of
it anyway. I *had* been waiting to get my changes upstream, but that
*still* hasn't happened.
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mai
There's also an adt-bsd-support branch for deps/eleveldb you didn't use,
which would probably have solved this problem for both FreeBSD and
OpenBSD.
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/ri
R15 is blacklisted for a reason, we don't support it yet. We haven't
changed all our NIFs to export the new version stuff R15 needs and
there's a couple other things that need some work too.
I suggest you either use R14B or install riak from a package.
Andrew
On Mon, Feb 20, 2012 at 05:19:09AM -0800, Jeremiah Peschka wrote:
> Bitcask and LevelDB are pluggable back ends for Riak. Bitcask is the default,
> and LevekDB is needed right now for secondary indexes.
>
> Windows was once POSIX compliant for about 15 minutes, then Microsoft changed
> their min
On Wed, Feb 08, 2012 at 11:12:27AM +0800, 郎咸武 wrote:
> Hey riak-users,
> There is a compile error in the following. I using freebsd. Eriang version
> is R14B03 . Riak version is 1.0.2.
> Please give me some idea. Thank everyone.
>
I don't understand why this is failing, what is the version of g
On Fri, Feb 03, 2012 at 11:44:49PM +0200, Alin Popa wrote:
> Ryan,
>
> I would say that having those informations into the log files, especially
> the reason why it failed, is very useful, so, would you say it would be
> helpful if I'm going to open a pull request which will increase the log
> lev
On Wed, Jan 11, 2012 at 10:07:57AM -0800, Mark Phillips wrote:
> 1) Q - How can I check which version of Riak I'm running?
>
> A -
> http://serverfault.com/questions/348530/how-can-i-check-which-version-of-riak-i-am-running
Newer riak packages also include the 'riak version' command:
riak
Riak control will be part of the 1.1 series, it is not present in 1.0.2
or any of the 1.0 releases.
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
Thomas,
I just replicated your setup (at least for the PR gets) and you can
indeed violate PR/PW when you pause a node on a VM. The reason this
happens is that riak's check for PR/PW simply looks at the ring's
preflist for a partition and checks that the required number of
partitions for that pref
On Tue, Jan 03, 2012 at 05:37:40PM +0100, Zabrane Mickael wrote:
> . riak_err prevents/minimizes SASL error dumps on the VM.
> . lager is a logger.
>
Lager actually borrows a bunch of code from riak_err to provide
riak_err's functionality (and actually fixes at least one issue that
riak_err had).
On Tue, Jan 03, 2012 at 04:48:11PM +0100, Zabrane Mickael wrote:
> Any chance that someone from Basho's team help me undertsand my problem (see
> below)?
>
What possible reason would you have to use *both* lager and riak_err on
the same project? Lager provides most, if not all, of riak_err's
fea
On Tue, Dec 27, 2011 at 12:18:23PM +0800, Denis Barishev wrote:
> Hello!
>
> I've faced a problem recently. There are strange processes like
> ...start_clean which use 100% of CPU. My riak version is 0.14.2.
> Do you know what is it and what can be done with it?
>
Can you provide more information
The actual error was about riak being unable to write to /tmp/riak,
rebooting the machine may have simply reset the permissions on /tmp/riak
(had you previously run riak as a different user?)
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
On Mon, Dec 12, 2011 at 07:00:57PM +, Tim Ariyeh wrote:
> Has there been any development in this area? I saw this:
>
> http://lists.basho.com/pipermail/riak-users_lists.basho.com/2011-August/005228.html
>
> But I wondered if any clear "official" or "least horrible" path existed now.
>
> I m
On Tue, Dec 06, 2011 at 10:49:40AM -0500, Phil Stanhope wrote:
> What are some examples of use cases for one-way replication?
>
A read-only secondary cluster where you want to run expensive queries
without affecting the production cluster.
Andrew
___
r
On Thu, Dec 01, 2011 at 08:38:15PM -0500, Jeremy Raymond wrote:
> So if I do have a bucket that I regularly want a listing of the keys for (or
> really that I want to access all of the objects) what is the recommend
> procedure? Put the same 2i index on each object in the bucket and then do an
> in
I think if you disable legacy keylisting, we'll just break a limb now.
Seriously though, keylists are at least non-blocking in 1.0, so the
vnodes aren't prevented from doing any reads/writes while the keylist is
running. However, remember that a keylist of any kind that isn't on a
single vnode (th
On Wed, Nov 30, 2011 at 10:12:24PM -0600, Paul Gross wrote:
> >A range of 1 might work, but I'd go for a range of 5 or so, just to be
> >safe.
> Thanks for the guideline. Can you give me some insight on when riak
> would use more than one port?
>
The most likely scenario is if riak crashes, and by
On Wed, Nov 30, 2011 at 02:09:45PM -0600, Paul Gross wrote:
> >>I'm setting up a new cluster with an iptables firewall, and I'm
> >>trying to figure out which ports to open. It looks like I need 4369,
> >>8099, 8098 (http), and a configurable range. Can I configure the
> >>range to be a single port
On Wed, Nov 30, 2011 at 01:50:48PM -0600, Paul Gross wrote:
> I'm setting up a new cluster with an iptables firewall, and I'm
> trying to figure out which ports to open. It looks like I need 4369,
> 8099, 8098 (http), and a configurable range. Can I configure the
> range to be a single port, or is
On Mon, Nov 28, 2011 at 12:47:17PM -0500, Jason Wagner wrote:
> This is a very developer oriented question about Lager that I'm posting
> here because I didn't find a dedicated list.
Yes, it doesn't have a list. I'm not sure if it is worth rectifying that
yet. Here should be fine for now.
> I'm w
On Thu, Nov 17, 2011 at 02:05:58PM -0600, Jon Brisbin wrote:
> I pushed to my Github a Lager backend for sending log messages to RabbitMQ
> via AMQP:
>
> https://github.com/jbrisbin/lager_amqp_backend
>
> It uses a re-connecting connection pool for sending messages, so it's pretty
> fast and
On Thu, Nov 17, 2011 at 04:52:58PM +0100, Bip Thelin wrote:
> Hi,
>
> I've been thinking about using lager to push logs to our Big Data Hadoop
> backend for later analysis using Scribe. Looking at the lager_syslog backend
> it looks fairly simple to create such a backend. But thrift works kind
On Sat, Nov 05, 2011 at 03:17:13PM -0700, Bryan Hughes wrote:
> Hello,
>
> I did an update on my Lager deps and am now experiencing some
> formatting issues with error_log:error_report(Report). Here is my
> code in my mochiweb loop:
>
Good catch. This was a side-effect of rewriting lager's outp
On Mon, Oct 24, 2011 at 03:30:25PM -0700, Bryan Hughes wrote:
> Hello,
>
> We have switched over to lager but have a problem with it truncating
> large records similar to io:fwrite() ~P - how do I turn this off, or
> switch it to ~p?
>
> Thanks so much for your help. Probably something simple th
On Tue, Sep 20, 2011 at 10:53:28AM -0700, Greg Pascale wrote:
> Hi Jon,
>
> Thanks for getting back to me.
>
> I'm doing full-text indexing, but I don't need to keep the text around once
> my object has been indexed, so I wrote a second precommit hook to remove the
> text from the object. This
On Wed, Aug 31, 2011 at 05:35:09PM -0400, Jonathan Langevin wrote:
> What if a node were permanently removed for some odd reason? You could never
> delete those keys in that situation?*
>
Then you should remove that node from the cluster and do a read-repair.
That should make the tombstones go aw
On Wed, Aug 31, 2011 at 05:11:16PM -0400, Tony Bussieres wrote:
> Hi,
>
> We have a cluster of two nodes.
>
> We add keys to a bucket :
> curl -v -X PUT -d '{"prop":"val"}' -H "Content-Type: application/json"
> http://riak/store/jdTestBucket/key1?w=1
> curl -v -X PUT -d '{"prop":"val"}' -H "Conte
I just pushed a commit that should resolve this.
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
On Sun, Aug 28, 2011 at 10:56:58AM -0700, Bryan Hughes wrote:
> Hi Everyone,
>
> Wasnt sure where to post this question, so sorry if this is the wrong place.
>
> We have Riak as our persistence and have decided to switch to Lager
> as our logging framework for the entire system - good stuff!!! S
On Tue, Aug 23, 2011 at 09:02:30PM -0700, Jeremiah Peschka wrote:
> Has anyone managed to build Riak Search 0.14.2 on OS X? When I try with the
> version from homebrew (or pulling the riak_search-0.14.2 tag from github) I
> get the following error:
>
> Compiling src/riakclient.proto
> WARNING: o
On Thu, Aug 11, 2011 at 01:07:27PM +1000, Robert Leftwich wrote:
> Hard to cover every possibility.
> The completely silent failure mode made it hard to get traction,
> spitting out some sort of error would be helpful, although reliably
> detecting this category of problem is potentially non-trivi
On Wed, Aug 10, 2011 at 04:26:08PM -0700, Mark Phillips wrote:
> > Emails need a wiki feature ;-)
> >
> > If no-one else steps forward, I'll attempt a FreeBSD build this weekend.
> > FreeBSD used to be my primary server OS (until Ubuntu Server won me over),
> > so I've got some familiarity there.
>
Hi All,
Please ignore me.
Just remove the first entry in your .erlang file (an exercise in one
of my "welcome to erlang texts").
Sorry, will be back with more challenging questions soon :P
Regards
Andrew
On Sun, Aug 7, 2011 at 9:21 PM, Andrew Thompson wrote:
> Hi All,
>
Hi All,
This one has probably been answered many times before and I apologize
in advance...
I have built and installed my first riak instance and along the way
discovered two things:
1. Build with Erlang version <= R14B01
2. This one is a bit different
Execution Environment
===
Unless you're running erlang-client from git master, and riak from git
master, you won't be able to generate keys via the PBC interface.
Andrew
___
riak-users mailing list
riak-users@lists.basho.com
http://lists.basho.com/mailman/listinfo/riak-users_lis
On Tue, Jul 19, 2011 at 10:42:47AM -0700, Anthony Molinaro wrote:
> Ahh, yeah that seems to be the case. I will have to investigate further
> and simply trying to turn off the error_logger adding
>
> -kernel error_logger silent
>
> does not seem to turn things off, and invoking
>
> error_logger
On Fri, Jul 01, 2011 at 12:33:42PM -0400, Jeff Kirkell wrote:
> Has anyone been able to get Riak running on CentOS 5.6? I installed Erlang
> 14B03 from source, have tried compiling from github, downloading the source
> tar, and even tried to install from the RHEL and Fedora RPM package and each
> h
On Thu, Jun 30, 2011 at 06:43:40PM -0400, Keith Bennett wrote:
> My problem is that it takes a little time after running riak start or stop
> for the operation to complete, and so I have to insert a sleep afterwards so
> that the next step in the code is not performed prematurely. Is there a way
On Wed, Jun 29, 2011 at 05:23:36PM -0400, Gregory Haskins wrote:
> On 6/29/11 1:19 PM, Jared Morrow wrote:
> > Greg,
> >
> > At this time there are no plans for a 0.14.3 release.
>
> Just to be clear: are there any plans to cut a release with the 14B03
> fixes in it anytime soon (perhaps 0.15,
On Thu, Jun 23, 2011 at 09:59:38AM +0200, Runar Jordahl wrote:
> As this discussion shows, deleting objects in an eventual consistency
> database is complicated. The concept of multiple APIs to do a delete,
> and the possibility of having objects reappear, can scare new
> customers away from Riak.
On Thu, Jun 16, 2011 at 09:24:28AM -0700, David Leimbach wrote:
> Riak doesn't have tombstones (as far as I know) so, you have to make sure
> all your nodes are up to do a delete. This, to me, seems like a misfeature.
>
Please read my other responses in this thread, riak absolutely *does*
have t
On Thu, Jun 16, 2011 at 09:19:51AM -0700, Greg Nelson wrote:
> "A tombstone
> is put and then an async get is fired off and if the async get finds all
> the primary nodes in the preflist are up, it does the delete. If not,
> the next time the key is fetched, it does the same check again and will
>
On Thu, Jun 16, 2011 at 06:09:37PM +0200, Kresten Krab Thorup wrote:
>
> On Jun 16, 2011, at 5:53 PM, Andrew Thompson wrote:
>
> > I've also
> > added a 'deletedvclock' GET option to change the return behaviour for
> > when a tombstone is found to i
On Thu, Jun 16, 2011 at 08:40:45AM -0700, Greg Nelson wrote:
> Well, it is kind of Riak specific. An implementation that treated DELETEs
> like PUTs (tombstones w/ vector clocks for ordering), then this would not be
> an issue, right? When no primary nodes are down, the tombstones can be
> physi
On Thu, Jun 09, 2011 at 08:01:24PM -0700, Ben Tilly wrote:
> It sounds like you understood perfectly.
>
> Basically we are running a cluster of machines that are busy doing
> lots of stuff. We wanted to use Riak to keep configuration
> information about those machines and the stuff they were doin
On Fri, Jun 03, 2011 at 06:08:06PM -0400, Keith Bennett wrote:
> Aphyr & Andrew -
>
> Thanks for your responses. I'm trying to wrap my head around the issues you
> raised, and I must confess it's difficult. Anyway, some questions for you...
>
> On Jun 3, 2
On Fri, Jun 03, 2011 at 02:00:23PM -0700, Aphyr wrote:
> Riak can't use the vclock for conflict resolution on a fresh object,
> i.e. one without a vclock. Deletes are writes. You should use get or
> reload before writing to help Riak sequence your writes correctly.
>
> On top of this, Riak has som
On Sat, May 07, 2011 at 03:47:02PM +0300, Dmitry Rozhkov wrote:
> Hi!
>
> I've just tried to put an object without a key as described in the docs, but
> this feature doesn't seem to work (sasl-error.log attached):
>
I'm assuming both the client and server are running latest from git,
right? The
On Thu, Apr 21, 2011 at 04:07:44PM -0500, Jon Brisbin wrote:
> Yeah, this would be good to put a value and get the vector clock back in a
> single operation for future updates...
>
Just pushed. This will also let you check if siblings were created
because it returns the full riak object, just wit
Oh, and does it make sense to have some approximation of the HEAD
option on put, like return_body but returning the object sans the value
so you can get the metadata without round-tripping the value itself?
Andrew
___
riak-users mailing list
riak-users@
On Thu, Apr 21, 2011 at 01:36:47PM -0700, Bryan O'Sullivan wrote:
> On Wed, Apr 20, 2011 at 2:28 PM, Andrew Thompson wrote:
>
> > Changes include conditional get [{if_modified, VClock}], conditional put
> > [if_none_match], [if_not_modified] and a way to get the metadata o
On Wed, Apr 06, 2011 at 02:12:30PM -0700, Bryan O'Sullivan wrote:
> Many thanks, Jon. Please bear in mind that the examples I extended were just
> the first two I could think of - as you know, the REST API is considerably
> more subtle and feature-rich than PBC. That said, the combination of
> cond
On Fri, Apr 15, 2011 at 03:57:43PM -0700, Shane Adams wrote:
> I followed the instructions on the website which indicates that I should be
> able to do this
>
> http://wiki.basho.com/Installing-Riak-from-Source.html
>
>
> Perhaps there is a stable/release branch?
>
I will fix this in the next
On Fri, Apr 15, 2011 at 10:14:44AM -0700, Shane Adams wrote:
> Hey Andrew -
>
> Thank you for replying.
>
>
> Erlang R13B04 (erts-5.7.5) [source] [rq:1] [async-threads:0] [hipe]
> [kernel-poll:false]
>
> Eshell V5.7.5 ?(abort with ^G)
> 1>
>
> I tried building from the source but got a compil
On Fri, Apr 15, 2011 at 09:26:18AM -0700, Shane Adams wrote:
> ==> riak_kv (compile)
> src/riak_client.erl:278: call to put/2 will call erlang:put/2; not put/2 in
> this module (add an explicit module name to the call to avoid this error)
> src/riak_client.erl:309: call to put/2 will call erlang:p
On Thu, Apr 14, 2011 at 02:09:35PM -0700, David Leimbach wrote:
> And now it builds.
Oh yeah, just switching to my branch. I thought you had to patch
something.
>
> To get all the bash scripts to run I hunted down all the instances of:
> #!/bin/bash
>
> and made them
>
> #!/usr/bin/env bash
>
On Thu, Apr 14, 2011 at 01:29:49PM -0700, David Leimbach wrote:
> I've checked out the branch for the last riak release, made a few
> modifications to the downloaded rebar.conf files for riak_kv, and one
> adjustment to the erlang_js/ebin/.app file (forget whole path), and it looks
> like I now hav
On Thu, Apr 14, 2011 at 10:44:53AM -0700, David Leimbach wrote:
> That's great! Does it still work on Linux too though? :-) I'm having one
> of those interrupt heavy days, and all the context switching is making it
> difficult to focus on this task :-)
>
Yes it still works on linux (this was th
It works!
https://github.com/basho/erlang_js/commit/25d9edfbe1956ece87ed20454b1e2ed53ee3881d
This makes erlang_js run the right make flavor on both BSD and linux.
Thanks a lot for the suggestion, I think this neatly solves the problem.
Andrew
___
riak
On Thu, Apr 14, 2011 at 09:34:26AM -0700, David Leimbach wrote:
> 1. GNUMakefile instead of Makefile
This would work if we added a regular Makefile that invoked GNU make
because GNU make looks for GNUMakefile first.
> 2. Allow overriding the configuration
Rebar doesn't support this, to my knowledge
I actually have a couple pull requests open to add support for all the
BSDs for riak. You're welcome to contribute to the effort.
https://github.com/basho/erlang_js/pull/11
https://github.com/basho/skerl/pull/5
Piotr actually has a better fix for skerl on OpenBSD here
https://github.com/basho/s
1 - 100 of 104 matches
Mail list logo